home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / Validation / Employee.h < prev    next >
Text File  |  1995-02-17  |  458b  |  24 lines

  1. // Employee.h
  2. // 
  3. // Created on Thu Sep 15 17:31:19 PDT 1994 by NeXT EOModeler.app Version 59
  4.  
  5. #import <eoaccess/eoaccess.h>
  6. #import "EOAcceptsNullForScalarsObject.h"
  7.  
  8. @interface Employee : EOAcceptsNullForScalarsObject
  9. {
  10.     NSString *address;
  11.     NSString *city;
  12.     int deptId;
  13.     int empId;
  14.     NSString *firstName;
  15.     NSString *lastName;
  16.     double salary;
  17.     int titleId;
  18.     id toDepartment;
  19.     NSString *departmentName;
  20. }
  21.  
  22. - (double)salary;
  23. @end
  24.